home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / httrack-library.h < prev    next >
C/C++ Source or Header  |  2002-11-14  |  4KB  |  110 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: HTTrack definition file for library usage              */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #ifndef HTTRACK_DEFLIB
  39. #define HTTRACK_DEFLIB
  40.  
  41. #include "htsglobal.h"
  42. #include "htsopt.h"
  43. #include "htswrap.h"
  44.  
  45. /* Main functions */
  46. HTSEXT_API int hts_init(void);
  47. HTSEXT_API int hts_uninit(void);
  48. HTSEXT_API int hts_main(int argc, char **argv);
  49.  
  50. /* Wrapper functions */
  51. HTSEXT_API int htswrap_init(void);
  52. HTSEXT_API int htswrap_add(char* name,void* fct);
  53. HTSEXT_API int htswrap_free(void);
  54. HTSEXT_API unsigned long int htswrap_read(char* name);
  55.  
  56. /* Other functions */
  57. HTSEXT_API int hts_resetvar(void);
  58. HTSEXT_API int hts_buildtopindex(char* path,char* binpath);
  59.  
  60. /* Catch-URL */
  61. HTSEXT_API T_SOC catch_url_init_std(int* port_prox,char* adr_prox);
  62. HTSEXT_API T_SOC catch_url_init(int* port,char* adr);
  63. HTSEXT_API int catch_url(T_SOC soc,char* url,char* method,char* data);
  64.  
  65. /* State */
  66. HTSEXT_API int hts_is_parsing(int flag);
  67. HTSEXT_API int hts_is_testing(void);
  68. HTSEXT_API int hts_is_exiting(void);
  69. HTSEXT_API int hts_setopt(httrackp* opt);
  70. HTSEXT_API int hts_addurl(char** url);
  71. HTSEXT_API int hts_resetaddurl(void);
  72. HTSEXT_API int copy_htsopt(httrackp* from, httrackp* to);
  73. HTSEXT_API char* hts_errmsg(void);
  74. HTSEXT_API int hts_setpause(int);      // pause transfer
  75. HTSEXT_API int hts_request_stop(int force);
  76. HTSEXT_API char* hts_cancel_file(char * s);
  77. HTSEXT_API void hts_cancel_test(void);
  78. HTSEXT_API void hts_cancel_parsing(void);
  79. HTSEXT_API char* hts_cancel_file(char * s);
  80. HTSEXT_API void hts_cancel_test(void);
  81. HTSEXT_API void hts_cancel_parsing(void);
  82.  
  83. /* Tools */
  84. HTSEXT_API int structcheck(char* s);
  85. HTSEXT_API void infostatuscode(char* msg,int statuscode);
  86. HTSEXT_API HTS_INLINE TStamp mtime_local(void);
  87. HTSEXT_API void qsec2str(char *st,TStamp t);
  88. HTSEXT_API char* int2char(int n);
  89. HTSEXT_API char* int2bytes(LLint n);
  90. HTSEXT_API char* int2bytessec(long int n);
  91. HTSEXT_API char** int2bytes2(LLint n);
  92. HTSEXT_API char* jump_identification(char*);
  93. HTSEXT_API char* jump_toport(char*);
  94. HTSEXT_API char* hts_rootdir(char* file);
  95.  
  96. /* Escaping URLs */
  97. HTSEXT_API void unescape_amp(char* s);
  98. HTSEXT_API void escape_spc_url(char* s);
  99. HTSEXT_API void escape_in_url(char* s);
  100. HTSEXT_API void escape_uri(char* s);
  101. HTSEXT_API void escape_uri_utf(char* s);
  102. HTSEXT_API void escape_check_url(char* s);
  103. HTSEXT_API char* escape_check_url_addr(char* s);
  104. HTSEXT_API void x_escape_http(char* s,int mode);
  105. HTSEXT_API char* unescape_http(char* s);
  106. HTSEXT_API char* unescape_http_unharm(char* s, int no_high);
  107. HTSEXT_API char* antislash_unescaped(char* s);
  108.  
  109. #endif
  110.